home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / wowBB_flaws.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  69 lines

  1. #
  2. # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. # Ref: Positive Technologies - www.maxpatrol.com
  4. # This script is released under the GNU GPLv2
  5. #
  6.  
  7. if(description)
  8. {
  9.   script_id(15557);
  10.   script_bugtraq_id(11429);
  11.   script_version("$Revision: 1.2 $");
  12.   script_name(english:"wowBB multiple flaws");
  13.  
  14.  desc["english"] = "
  15. The remote host is running wowBB, a web based forum  written in PHP.
  16.  
  17. This version is vulnerable to XSS and SQL injection attacks. A malicious 
  18. user can access users cookies including authentication cookies and inject SQL
  19. commands to be executed on the underlying database.
  20.  
  21. Solution: Upgrade to the latest version of this software
  22. Risk factor : High";
  23.  
  24.   script_description(english:desc["english"]);
  25.  
  26.   script_summary(english:"Checks wowBB version");
  27.   script_category(ACT_GATHER_INFO);
  28.   script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  29.   script_family(english:"CGI abuses : XSS");
  30.   script_require_ports("Services/www", 80);
  31.   script_dependencie("http_version.nasl");
  32.   exit(0);
  33. }
  34.  
  35. # the code!
  36.  
  37. include("http_func.inc");
  38. include("http_keepalive.inc");
  39.  
  40. function check(req)
  41. {
  42.   buf = http_get(item:string(req,"/index.php"), port:port);
  43.   r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  44.   if( r == NULL )exit(0);
  45.   if(egrep(pattern:"WowBB Forums</TITLE>.*TITLE=.WowBB Forum Software.*>WowBB (0\..*|1\.([0-5][0-9]|60|61))</A>", string:r))
  46.   {
  47.      http_close_socket(soc);
  48.      security_hole(port);
  49.     exit(0);
  50.   }
  51. }
  52.  
  53. port = get_http_port(default:80);
  54. if ( ! port ) exit(0);
  55. if(!get_port_state(port)) exit(0);
  56. if(!can_host_php(port:port))exit(0);
  57.  
  58. soc = http_open_socket(port);
  59. if(soc)
  60. {
  61.   foreach dir (cgi_dirs())
  62.   {
  63.     check(req:dir);
  64.   }
  65.   http_close_socket(soc);
  66. }
  67. exit(0);
  68.